home *** CD-ROM | disk | FTP | other *** search
- /*
- name: tga.h
-
- Prototypes for tga support
- --------------------------
-
- */
-
- /* Prototypes for functions defined in tga.c */
- void WriteTgaHeader(FILE *f,long width, long height);
- void ReadTgaHeader(FILE *f, long *width, long *height);
- void WriteTgaPixle(FILE *f, char r, char g, char b);
- void ReadTgaPixle(FILE *f, int *r, int *g, int *b);
- void WriteTgaLine(FILE *f, long width);
-